 *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Playfair Display', serif;

}
body {
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
    background: #f9f8f6;
    color: #181818;
    font-family: 'Playfair Display', serif;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.btn {
    display: inline-block;
    background: red;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background: #e44a4a;
}

/* Navbar Styles */
.navbar {
    background: #181818; /* default black background for all pages */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Transparent navbar only on home page */
.home-page .navbar {
    background: transparent;
    box-shadow: none;
}

.home-page .navbar.scrolled {
    background: #181818; /* deep charcoal when scrolled */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #eafcff;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #eafcff;
    font-weight: 500;
    font-size: 1.2rem;
}

.nav-links a:hover {
    color: red;
}

.hamburger {
    display: none;
    cursor: pointer;
    color: white;
}

.hamburger.active i {
    transform: rotate(90deg);
}

.hamburger i {
    transition: transform 0.3s ease;
}

/*home section*/

.hero {
    background: url(background.png);
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding-top: 60px;
    filter: brightness(0.8);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 60vh;
    padding-top: 60px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    margin-top: 190px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* Services Section */
.services {
    padding: 80px 0;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.services.visible {
    opacity: 1;
    transform: translateY(0);
}

.services .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 50px;
}

.images-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.services .container img {
    width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.services-left {
    flex: 1 1 300px;
    min-width: 250px;
    margin-right: 30px;
    text-align: left;
}

.services-left h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: center;
}
.services-left h3{
    text-align: center;
    font-size: x-large;
}
.services-left p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

/* Works Section */
.Works {
    padding: 80px 0;
    background: #f8f9fa;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.Works.visible {
    opacity: 1;
    transform: translateY(0);
}

.Works h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    text-align: center;
}

.work-img {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.work-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-img img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Story section*/
.story {
    padding: 80px 0;
    background: #f8f9fa;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.story.visible {
    opacity: 1;
    transform: translateY(0);
}

.story h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    text-align: center;
}

.story p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}
/* Portfolio section */
.Portfolio {
    padding: 70px 0;
    background: #f9f9f9;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.Portfolio.visible {
    opacity: 1;
    transform: translateY(0);
}

.Portfolio h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #333;
}

.Portfolio .Portfolio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.portfolio-card {
    background: white;
    padding: 0;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    overflow: hidden;
}

.portfolio-card:hover {
    transform: translateY(-10px);
}

.portfolio-card img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    display: block;
}

.portfolio-card h3 {
    margin: 20px 20px 10px 20px;
    font-size: 1.5rem;
    color: #333;
}

.portfolio-card p {
    color: #0b0101;
    line-height: 1.6;
    margin: 0 20px 20px 20px;
    font-size: 0.9rem;
    font-weight: bold;
    padding-top: 1vh;
}

.porrt-button {
    text-align: center;
    margin-top: 40px;
}

.porrt-button a {
    display: inline-block;
    background: red;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.porrt-button a:hover {
    background: #e44a4a;
}

/* Gallery Images Section */
.gallery-images {
    padding: 120px 0 80px 0;
    background: #fff;
}

.gallery-images .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.image-box {
    position: relative;
    width: 43%;
    height: 600px;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    border-radius: 15px;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-box:hover img {
    filter: brightness(0.8);
}
.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* About page slider image section */
.slider-container {
  position: relative;
  width: 96%;
  max-width: 900px;
  margin: 30px auto 0 auto;
  overflow: hidden;
  background: #f9f8f6;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 20px 0;
}

.slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(.77,0,.18,1);
  gap: 10px;
}

.slide {
  min-width: 250px;
  max-width: 300px;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 2;
  transition: background 0.2s, box-shadow 0.2s;
}

.arrow:hover {
  background: #e44a4a;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.arrow-left {
  left: 10px;
}

.arrow-right {
  right: 10px;
}

.arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* About Section */
.about {
    padding: 80px 0 40px 0;
    background: #f9f8f6;
}
.about .container {
    margin: 0 auto;
    padding-top: 4vh;
}
.about h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #000000;
    letter-spacing: 1px;
    font-weight: bold;
}
.about h2 {
    padding: 20px 30px 10px 30px;
    font-size: 2rem;
    color: #000000;
    text-align: center;
    font-weight: bold;
    letter-spacing: 1px;
}
.about p {
    padding: 10px 30px;
    font-size: 1.1rem;
    color: #333;
    line-height: 2;
    text-align: justify;
    font-weight: 500;
}

.about .container-img {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(8, 1fr);
    gap: 8px;
    height: 600px;
    margin: 30px auto;
    max-width: 1100px;
}
.about .container-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}
.about .container-img img:nth-child(1) {
    grid-column: 1 / span 3;
    grid-row: 1 / span 4;
}
.about .container-img img:nth-child(2) {
    grid-column: 4 / span 3;
    grid-row: 3 / span 4;
}
.about .container-img img:nth-child(3) {
    grid-column: 7 / span 3;
    grid-row: 1 / span 4;
}
.about .container-img img:nth-child(4) {
    grid-column: 10 / span 3;
    grid-row: 3 / span 4;
}

/* Contact Section */
.contact {
    padding-top: 60px;
    padding-bottom: 80px;
    background-color: var(--cream);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    padding-top: 40px;
}

.contact-info h2 {
    font-size: 3rem;
    color: #333;
}

.contact-info h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--gold);
    margin-right: 15px;
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a,
.social-links a:visited,
.social-links a:active,
.social-links a:hover {
    text-decoration: none;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--gold);
    color: var(--light);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--dark);
    color: var(--gold);
    transform: translateY(-3px);
}

/* Brand colors for specific social icons */
.social-links .whatsapp {
    background-color: #25D366; /* WhatsApp Green */
    color: white;
}

.social-links .instagram {
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); /* Instagram Gradient */
    color: white;
}

.social-links .whatsapp:hover {
    background-color: #1DAA51; /* Darker WhatsApp Green */
    transform: translateY(-3px);
}

.social-links .instagram:hover {
    opacity: 0.9;
    transform: translateY(-3px);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--gold);
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form {
  background: #fff;
  padding: 35px 25px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Footer Section */
.footer {
    background: #181818;
    color: #eafcff;
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #333;
}
.footer .container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer p {
    margin: 0;
    font-size: 1rem;
    color: #eafcff;
    font-weight: 500;
}

.footer a {
    text-decoration: none;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
    padding: 30px 0 0 0;
}
.footer-contact, .footer-social, .footer-links {
    flex: 1 1 0;
    min-width: 180px;
    color: #eafcff;
}
.footer-social a {
    margin-right: 12px;
    color: #eafcff;
    font-size: 1.3rem;
}
.footer-social a:last-child {
    margin-right: 0;
}
.footer-links a {
    display: block;
    color: #eafcff;
    margin-bottom: 6px;
    font-size: 1rem;
}
.footer-links a:last-child {
    margin-bottom: 0;
}
.footer-info p, .footer-info a {
    color: #eafcff;
}
.footer-contact p {
    margin-bottom: 8px;
}
.footer-info strong {
    color: #fff;
}
.footer-copyright {
    text-align: center;
    margin-top: 20px;
}

/* ===== RESPONSIVE DESIGN - MEDIA QUERIES ===== */

/* Slider Responsive */
@media (max-width: 700px) {
  .slider-container {
    width: 98%;
    margin: 15px auto 0 auto;
    padding: 10px 0;
  }
  .slide {
    min-width: 180px;
    max-width: 220px;
    height: 250px;
  }
  .arrow {
    font-size: 1.5rem;
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  .slider-container {
    width: 100%;
    margin: 5px auto 0 auto;
    padding: 5px 0;
    border-radius: 0;
    box-shadow: none;
  }
  .slide {
    min-width: 120px;
    max-width: 140px;
    height: 180px;
    border-radius: 6px;
  }
  .slide img {
    border-radius: 6px;
  }
  .arrow {
    font-size: 1.2rem;
    padding: 6px 8px;
    top: 45%;
  }
}

/* About Section Responsive */
@media (max-width: 600px) {
    .about .container {
        padding: 20px 10px;
    }
    .about h1 {
        font-size: 2rem;
    }
    .about h2 {
        padding: 15px 10px 8px 10px;
        font-size: 1.3rem;
    }
    .about p {
        padding: 8px 10px;
        font-size: 1rem;
    }
}

/* Contact Section Responsive */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-form {
        order: 1; /* Show form on top */
    }
    .contact-info {
        order: 2; /* Show contact details below */
    }
    .contact-info h2 {
        font-size: 2.5rem;
    }
    .contact-info h3 {
        font-size: 1.8rem;
    }
    .contact-form {
        padding: 25px;
    }
}

@media (max-width: 480px) {
  .contact {
    padding-top: 55px;
  }
}

/* Mobile Styles - General */
@media screen and (max-width: 480px) {
    .container {
        width: 100%;
        padding: 0 20px;
    }
    .navbar {
        padding: 10px 0;
    }
    .navbar .container {
        padding: 0 20px;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    .logo {
        font-size: 1rem;
        flex: 1;
    }
    .hamburger {
        display: block;
        color: white;
        font-size: 1.5rem;
        margin-left: auto;
        margin-right: 2vh;
        z-index: 1001;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #181818;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }
    .nav-links a {
        padding: 10px 20px;
        display: block;
        font-size: 1.1rem;
    }
    .hero {
        height: 100vh;
        padding-top: 50px;
    }
    .hero-content {
        padding-top: 50px;
        min-height: 50vh;
    }
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    .hero p {
        font-size: 1rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .services {
        padding: 50px 0;
    }
    .services .container {
        flex-direction: column;
        gap: 20px;
    }
    .images-container {
        gap: 10px;
    }
    .services .container img {
        width: 120px;
    }
    .services-left {
        margin-right: 0;
        text-align: center;
    }
    .services-left h1 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    .services-left h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    .services-left p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .Works {
        padding: 50px 0;
    }
    .Works h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    .work-img {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .work-img img {
        height: 200px;
    }
    .story {
        padding: 50px 0;
    }
    .story h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    .story p {
        font-size: 0.95rem;
        line-height: 1.6;
        max-width: 100%;
        padding: 0 10px;
    }
    .Portfolio {
        padding: 50px 0;
    }
    .Portfolio h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .Portfolio .Portfolio {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .portfolio-card {
        padding: 0;
    }
    .portfolio-card img {
        height: 300px;
    }
    .portfolio-card h3 {
        font-size: 1.3rem;
        margin: 15px 15px 8px 15px;
    }
    .portfolio-card p {
        font-size: 0.85rem;
        margin: 0 15px 15px 15px;
    }
    .footer {
        padding: 20px 0;
    }
    
    .footer p {
        font-size: 0.9rem;
    }
    
    /* Gallery responsive styles */
    .gallery-images {
        padding: 100px 0 50px 0;
    }
    
    .gallery-images .container {
        padding: 0 15px;
        gap: 15px;
    }
    
    .image-box {
        width: 100%;
        height: 500px;
    }
    
    .overlay-text {
        font-size: 1.5rem;
    }
}
.show .work-image {
    padding-top: 100px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 40px 20px;
    box-sizing: border-box;
}

.show .work-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: block;
    background: #f3f3f3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.show .work-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 480px) {
    .show .work-image {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 100px 5px 20px 5px;
    }
    .show .work-image img {
        height: 300px;
        width: 100%;
    }
}

@media (max-width: 800px) {
    .footer-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
    .footer-contact, .footer-social, .footer-links {
        width: 100%;
        min-width: 0;
        margin-bottom: 10px;
    }
}



